home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / etech / GALer20 / Examples / GAL22V10.pld < prev    next >
Text File  |  1996-04-05  |  703b  |  29 lines

  1. GAL22V10
  2. 22V10
  3.  
  4. Clock   A       B  C  D  E       F       NC NC NC NC GND
  5. SyncPre AsyncRe NC NC NC Enable2 Enable1 Y4 Y3 Y2 Y1 VCC
  6.  
  7.  
  8. Y1.R  = A * B            ; Y1 is a registered output => .R
  9. Y1.E  = Enable1
  10.  
  11. Y2.R  = C
  12. Y2.E  = Enable2 * Y4        ; Attention: there is a feedback of Y4
  13.                 ; (Y4 is defined as output but it's
  14.                 ; used as input again)
  15.  
  16. Y3    = Enable2 * Y4        ; there is a feedback again
  17.  
  18. Y4    = D + E + F
  19.  
  20.  
  21. AR    = F * AsyncRe        ; define asynchronous reset
  22.  
  23. SP    = SyncPre            ; define synchronous preset
  24.  
  25.  
  26. DESCRIPTION
  27. To define the asynchronous reset and the synchronous preset you can use
  28. the keywords AR and SP. But this keywords can't be used as pin names.
  29. For AR and SP is one product term allowed.